home *** CD-ROM | disk | FTP | other *** search
/ New Star Software Collection / NSS_Collection.iso / 3-029 dr solomon / 2.ima / VIV2.BAT < prev    next >
DOS Batch File  |  1993-01-27  |  592b  |  24 lines

  1. @Echo off
  2. VIVERIFY CHECKPRINT /D=C /T /N=5
  3. rem
  4. rem See the manual for documentation on the other ViVerify switches
  5. rem
  6. IF ERRORLEVEL = 255 GOTO INT
  7. IF ERRORLEVEL = 3 GOTO PROBLEM
  8. IF ERRORLEVEL = 2 GOTO VIRUS
  9. IF ERRORLEVEL = 1 GOTO PROBLEM
  10. IF ERRORLEVEL = 0 GOTO CLEAR
  11. :INT
  12. Echo ViVerify interrupted by user
  13. GOTO EXIT1
  14. :VIRUS
  15. ECHO Change detected. Please call your PC Support person
  16. GOTO EXIT1
  17. :PROBLEM
  18. ECHO There has been some problem (not a virus) with ViVerify.
  19. ECHO Please call your PC Support person
  20. GOTO EXIT1
  21. :CLEAR
  22. ECHO Virus check completed - all clear.
  23. :EXIT1
  24.